home *** CD-ROM | disk | FTP | other *** search
- global sbcontentsprite, gtransitionspeed, gnumviews, newview, pagedown, pageup, objectpict, lightsprite, ossprite
-
- on enterFrame
- global roomname, sideboard, roomnumber, objmarker, objectpict, gbarsprite, gslidersprite
- if gnumviews > 1 then
- set mouseposition to point(the mouseH, the mouseV)
- if the mouseH < (the right of sprite sideboard - 60) then
- if (the mouseV > the bottom of sprite sbcontentsprite) and (the mouseV < (the bottom of sprite sideboard - 20)) then
- if newview < gnumviews then
- turndown()
- einstallcontrolsideboard()
- else
- cursor(-1)
- end if
- else
- if the mouseV < the top of sprite sbcontentsprite then
- if newview > 1 then
- turnup()
- einstallcontrolsideboard()
- else
- cursor(-1)
- end if
- else
- cursor(-1)
- end if
- end if
- end if
- end if
- if not rollOver(sideboard) then
- cursor(-1)
- puppetSprite(sbcontentsprite, 0)
- puppetSprite(objectpict, 0)
- set the visible of sprite objmarker to 0
- set the visible of sprite ossprite to 1
- if the right of sprite gslidersprite <> (the right of sprite gbarsprite - 1) then
- set the movieRate of sprite ossprite to 1
- end if
- updateStage()
- go(the frame - 2)
- end if
- end
-
- on exitFrame
- go(the frame)
- end
-
- on idle
- checksbrollover(#up)
- end
-
- on turnup
- set arrowcursor to the number of member "up"
- set arrowcursormask to the number of member "upMask"
- cursor([arrowcursor, arrowcursormask])
- set the visible of sprite objectpict to 0
- set the visible of sprite lightsprite to 0
- set currentview to value(word 2 of the name of member the memberNum of sprite sbcontentsprite of castLib "Guide")
- if currentview = 1 then
- exit
- else
- set newview to currentview - 1
- end if
- set newviewcast to "E-HSList" && newview
- set the member of sprite sbcontentsprite to member newviewcast
- puppetTransition(13, gtransitionspeed, 0, 1)
- updateStage()
- set pageup to 1
- set pagedown to 0
- end
-
- on turndown
- set arrowcursor to the number of member "down"
- set arrowcursormask to the number of member "downMask"
- cursor([arrowcursor, arrowcursormask])
- set the visible of sprite objectpict to 0
- set the visible of sprite lightsprite to 0
- set currentview to value(word 2 of the name of member the memberNum of sprite sbcontentsprite of castLib "Guide")
- if currentview = gnumviews then
- exit
- else
- set newview to currentview + 1
- end if
- set newviewcast to "E-HSList" && newview
- set the member of sprite sbcontentsprite to member newviewcast
- puppetTransition(14, gtransitionspeed, 0, 1)
- updateStage()
- set pagedown to 1
- set pageup to 0
- end
-